316b954c8df51c87b89ae25b5449b25b6d66aa12,src/test/java/io/specto/hoverfly/junit/core/SimulationSourceTest.java,SimulationSourceTest,shouldCreateSimulationFromFile,#,104
Before Change
public void shouldCreateSimulationFromFile() throws Exception {
// When
Simulation actual = SimulationSource.file(Paths.get("src/test/resources", "test-service.json")).getSimulation().get();
// Then
assertThat(actual).isNotNull();
After Change
public void shouldCreateSimulationFromFile() throws Exception {
// When
Simulation actual = SimulationSource.file(Paths.get("src/test/resources", "test-service.json")).getSimulation();
// Then
assertThat(actual).isNotNull();